home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / CENTER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  141 b   |  9 lines

  1. void AtSay( int x, int y, char *s );
  2.  
  3. #include <string.h>
  4.  
  5. void Center( int y, char *s )
  6. {
  7.     AtSay( ( 80 - strlen(s) ) / 2, y, s );
  8. }
  9.